From: Keir Fraser Date: Mon, 4 Jan 2010 09:04:53 +0000 (+0000) Subject: xend: Allow disable QEMU monitor by settinbg option to 0 in config file. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12796 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=f3c8a24596ad166de0b62e881070d110850c5f37;p=xen.git xend: Allow disable QEMU monitor by settinbg option to 0 in config file. Signed-off-by: Daniel Kiper --- diff --git a/tools/python/xen/xend/image.py b/tools/python/xen/xend/image.py index 44ee97c863..6c8a9a80c0 100644 --- a/tools/python/xen/xend/image.py +++ b/tools/python/xen/xend/image.py @@ -376,6 +376,8 @@ class ImageHandler: ret = ret + ['-monitor', vmConfig['platform'].get('monitor_path')] else: ret = ret + ['-monitor', 'vc'] + else: + ret = ret + ['-monitor', 'null'] return ret